home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr05
/
shwdib.zip
/
MAKEFILE
< prev
next >
Wrap
Text File
|
1993-07-26
|
2KB
|
88 lines
##### Module Macros ####
NAME = showdib
SRCS = $(NAME).c print.c dib.c drawdib.c dlgopen.c
OBJS = dlgopena
##### C7 Macro ######
C7 = 1
##### Library Macros #####
LIBS = libw slibcew commdlg
MOD = -AS
##### Include Macro #####
INCLS = $(NAME).h
##### Resource Macro #####
RCFILES = $(NAME).rc $(NAME).dlg
##### DEBUG Macro Defined #####
DEBUG = 1
##### Build Option Macros #####
!if $(DEBUG)
DDEF = -DDEBUG
CLOPT = -Zid -Od
MOPT = -Zi
LOPT = /CO /LI /MAP
!else
DDEF =
CLOPT = -Os
LOPT =
!endif
##### General Macros #####
DEF =
##### Tool Macros #####
ASM = masm -Mx $(MOPT) $(DDEF) $(DEF)
CC = cl -nologo -c -G2sw -Zp -W3 $(MOD) $(CLOPT) $(DDEF) $(DEF)
LINK = link /NOD /NOE $(LOPT)
RC = rc $(DDEF) $(DEF)
HC = hc
##### Inference Rules #####
.c.obj:
$(CC) $*.c
.asm.obj:
$(ASM) $*.asm;
.rc.res:
$(RC) -r $*.rc
##### Main (default) Target #####
goal: $(NAME).exe
##### Dependents For Goal and Command Line #####
$(NAME).exe: $(SRCS:.c=.obj) $(NAME).def $(NAME).res
$(LINK) @<<
$(SRCS:.c=.obj) $(OBJS),
$(NAME).exe,
$(NAME).map,
$(LIBS),
$(NAME).def
<<
$(RC) -T $(NAME).res
!if $(DEBUG)
!if !$(C7)
cvpack -p $(NAME).exe
!endif
mapsym $(NAME).map
!endif
##### Dependents #####
$(SRCS:.c=.obj): $(INCLS)
$(NAME).res: $(RCFILES)
##### Clean Directory #####
clean:
-del showdib.obj
-del print.obj
-del dib.obj
-del drawdib.obj
-del dlgopen.obj
-del *.res
-del *.map
-del *.sym